home *** CD-ROM | disk | FTP | other *** search
/ Aminet 38 / Aminet 38 (2000)(Schatztruhe)[!][Aug 2000].iso / Aminet / util / moni / Scout-src.lha / src / startup_defs.h < prev    next >
Encoding:
C/C++ Source or Header  |  2000-03-09  |  3.4 KB  |  97 lines

  1. /**
  2.  * Scout - The Amiga System Monitor
  3.  *
  4.  *------------------------------------------------------------------
  5.  *
  6.  * This program is free software; you can redistribute it and/or modify
  7.  * it under the terms of the GNU General Public License as published by
  8.  * the Free Software Foundation; either version 2 of the License, or
  9.  * any later version.
  10.  *
  11.  * This program is distributed in the hope that it will be useful,
  12.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14.  * GNU General Public License for more details.
  15.  *
  16.  * You should have received a copy of the GNU General Public License
  17.  * along with this program; if not, write to the Free Software
  18.  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  19.  *
  20.  * You must not use this source code to gain profit of any kind!
  21.  *
  22.  *------------------------------------------------------------------
  23.  *
  24.  * @author Andreas Gelhausen
  25.  * @author Richard Körber <rkoerber@gmx.de>
  26.  */
  27.  
  28.  
  29.  
  30. #ifndef STARTUP_DEFS_H
  31. #define STARTUP_DEFS_H
  32.  
  33. #define PROGNAME        "Scout"
  34. #define PROGVERSION     "37"
  35. #define PROGREVISION    "205"
  36. #define RELEASEVERSION  "2"
  37. #define RELEASEREVISION "11ß"
  38. #define RELEASEDATE     "11.11.97"
  39. #define VERSIONSTRING    PROGNAME " " PROGVERSION "." PROGREVISION " (" RELEASEDATE ")"
  40. #define AUTHOR          "A. Gelhausen, R. Körber"
  41. #define COPYRIGHT       "  © 1994-97 " AUTHOR "  "
  42. #define DESCRIPTION     "Systemmonitor"
  43. #define EMAIL           "rkoerber@gmx.de"
  44. #define URL             "http://shredzone.home.pages.de"
  45.    
  46. #define MYLIBVERSION       37
  47.  
  48. struct Args {
  49.    LONG     *ToolPri;
  50.    STRPTR   Startup;
  51.    LONG     Iconified;
  52.    STRPTR   PortName;
  53.    STRPTR   IntervalTime;
  54.    LONG     *CpuDisplay;
  55.    STRPTR   Host;
  56.    STRPTR   User;
  57.    STRPTR   Password;
  58.    LONG     SingleWindows;
  59.    LONG     *SortLibrariesType;
  60.    LONG     *SortDevicesType;
  61.    LONG     *SortResourcesType;
  62.    LONG     *SortTasksType;
  63.    LONG     *SortPortsType;
  64.    LONG     *SortCommandsType;
  65.    LONG     *SortAssignsType;
  66.    LONG     *SortLocksType;
  67.    LONG     *SortCommoditiesType;
  68.    LONG     *SortScreenmodeType;
  69.    LONG     *SortClassesType;
  70.    STRPTR   Command;
  71. };
  72.  
  73. #define WBTEMPLATE      "TOOLPRI/K/N,STARTUP/K,ICONIFIED/S,PORTNAME/K," \
  74.                         "INTERVALTIME/K,CPUDISPLAY/K/N," \
  75.                         "HOST/K,USER/K,PASSWORD/K," \
  76.                         "SW=SINGLEWINDOWS/S," \
  77.                         "SORTLIBRARIESTYPE/K/N,SORTDEVICESTYPE/K/N,SORTRESOURCESTYPE/K/N," \
  78.                         "SORTTASKSTYPE/K/N,SORTPORTSTYPE/K/N,SORTCOMMANDSTYPE/K/N," \
  79.                         "SORTASSIGNSTYPE/K/N,SORTLOCKSTYPE/K/N,SORTCOMMODITIESTYPE/K/N," \
  80.                         "SORTSCREENMODETYPE/K/N,SORTCLASSESTYPE/K/N," \
  81.                         "C=COMMAND/K"
  82.  
  83. #define TEMPLATE        "TOOLPRI/K/N,STARTUP/K,ICONIFIED/S,PORTNAME/K," \
  84.                         "INTERVALTIME/K,CPUDISPLAY/K/N," \
  85.                         "HOST/K,USER/K,PASSWORD/K," \
  86.                         "SW=SINGLEWINDOWS/S," \
  87.                         "SORTLIBRARIESTYPE/K/N,SORTDEVICESTYPE/K/N,SORTRESOURCESTYPE/K/N," \
  88.                         "SORTTASKSTYPE/K/N,SORTPORTSTYPE/K/N,SORTCOMMANDSTYPE/K/N," \
  89.                         "SORTASSIGNSTYPE/K/N,SORTLOCKSTYPE/K/N,SORTCOMMODITIESTYPE/K/N," \
  90.                         "SORTSCREENMODETYPE/K/N,SORTCLASSESTYPE/K/N," \
  91.                         "C=COMMAND/K"
  92.  
  93. #define OPT_COUNT       sizeof(struct Args)/sizeof(LONG)
  94.  
  95.  
  96. #endif /* STARTUP_DEFS_H */
  97.